home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9206.ARJ / 1006083A < prev    next >
Text File  |  1992-06-02  |  129b  |  6 lines

  1. /* an example of a makefile with a recursive dependency */
  2. hello.obj : hello.c proto.h
  3.         cc hello.c
  4.  
  5. proto.h : hello.obj
  6.